home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / COMPNENT / DTOOLS3 / DEMO.DPR next >
Text File  |  1995-06-19  |  797b  |  25 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Demomisc in 'DEMOMISC.PAS' {MiscGadgets},
  6.   Demomain in 'DEMOMAIN.PAS' {FrontPanel},
  7.   Demobwcc in 'DEMOBWCC.PAS' {BWCCControls},
  8.   Demoled in 'DEMOLED.PAS' {LEDControls},
  9.   Democlok in 'DEMOCLOK.PAS' {Clocks},
  10.   Demodraw in 'DEMODRAW.PAS' {OwnerDrawControls},
  11.   Demoback in 'DEMOBACK.PAS' {BackgroundControls};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.CreateForm(TFrontPanel, FrontPanel);
  17.   Application.CreateForm(TMiscGadgets, MiscGadgets);
  18.   Application.CreateForm(TBWCCControls, BWCCControls);
  19.   Application.CreateForm(TLEDControls, LEDControls);
  20.   Application.CreateForm(TClocks, Clocks);
  21.   Application.CreateForm(TOwnerDrawControls, OwnerDrawControls);
  22.   Application.CreateForm(TBackgroundControls, BackgroundControls);
  23.   Application.Run;
  24. end.
  25.